home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 42
/
Amiga Format AFCD42 (Issue 126, Aug 1999).iso
/
-serious-
/
comms
/
other
/
micq-0.4.0
/
smakefile
< prev
next >
Wrap
Makefile
|
1999-05-14
|
1KB
|
57 lines
# Anyone who knows how to make Makefiles please help out.
# I have no clue but this appears to work fairly well
# be sure to use gmake
SRCS =icq_response.c micq.c sendmsg.c rus_conv.c server.c ui.c util.c msg_queue.c util_ui.c file_util.c mreadline.c nonblkout.c
OBJS =icq_response.o micq.o sendmsg.o rus_conv.o server.o ui.o util.o msg_queue.o util_ui.o file_util.o mreadline.o nonblkout.o
HEADERS = datatype.h micq.h ui.h msg_queue.h
CC=sc
#
all : micq
re : clean all
micq : ${OBJS}
${CC} ${OBJS} to micq LINK
${OBJS} : ${HEADERS}
clean :
rm -f ${OBJS}
icq_response.o: icq_response.c ${HEADERS} scoptions smakefile
${CC} NOLINK icq_response.c
micq.o: micq.c ${HEADERS} scoptions smakefile
${CC} NOLINK micq.c
sendmsg.o: sendmsg.c ${HEADERS} scoptions smakefile
${CC} NOLINK sendmsg.c
rus_conv.o: rus_conv.c ${HEADERS} scoptions smakefile
${CC} NOLINK rus_conv.c
server.o: server.c ${HEADERS} scoptions smakefile
${CC} NOLINK server.c
ui.o: ui.c ${HEADERS} scoptions smakefile
${CC} NOLINK ui.c
util.o: util.c ${HEADERS} scoptions smakefile
${CC} NOLINK util.c
msg_queue.o: msg_queue.c ${HEADERS} scoptions smakefile
${CC} NOLINK msg_queue.c
util_ui.o: util_ui.c ${HEADERS} scoptions smakefile
${CC} NOLINK util_ui.c
mreadline.o: mreadline.c ${HEADERS} scoptions smakefile
${CC} NOLINK mreadline.c
file_util.o: file_util.c ${HEADERS} scoptions smakefile
${CC} NOLINK file_util.c
nonblkout.o: nonblkout.c